home *** CD-ROM | disk | FTP | other *** search
/ ketsftp.k12.ky.us / ketsftp.k12.ky.us.zip / ketsftp.k12.ky.us / ISA / Important - READ_ME.txt next >
Text File  |  2008-03-24  |  4KB  |  77 lines

  1. *This is a collection of utilities that would be commonly used with an ISA 2006 installation.  Some information taken from
  2. Microsoft.com, others from isascripts.org.  Scripts provided "AS IS" without warrantiesor guarantees of any kind.  Use at
  3. your own risk.  Don't use these scripts if you are unsure of what it is doing, or why you should execute them.
  4.  
  5. *All referenced files are included in the ZIP archive named ISA_Scripts.zip.
  6.  
  7. ISAExport.wsf
  8.  
  9. -    Used to automatically backup (export) your current ISA 2006 configuration.
  10. -    Usage:
  11.         *if desire is to backup to a remote server (recommended).
  12.         *if running as a scheduled task, please run with an account that has access to the specified share, 
  13.         or the task will fail.  
  14.         *note: If running with a specified service account, please also ensure the following:
  15.             -Read, Modify, and Execute permission on the local script
  16.             _At least ISA Server Auditor permission within ISA (right click on ISA server in ISA Management Console,
  17.              properties, assign roles)
  18.  
  19.             cscript.exe isaexport.wsf /path:"\\remoteserver\sharename"
  20.         *if desire is to backup locally
  21.             cscript.exe isaexport.wsf /path:"c:\isabackups"
  22.  
  23. ISA_Increase_Authenticatin_Throughput_KB326040.reg
  24. -    If the computer uses NTLM or Basic authentication for many Web clients, you may experience poor performance. 
  25.     This problem does not occur when authentication is turned off.  You can improve the authentication throughput 
  26.     by increasing the number of concurrent authentication calls that are in progress at one time between the ISA 
  27.     Server computer and the domain controller.
  28. -    http://support.microsoft.com/kb/326040
  29. -    Usage:
  30.         *Double-click ISA_Increase_Authentication_Throughput_KB326040.reg
  31.         *Reboot server
  32.  
  33. ISA_Fill_Domain_Name_Set.vbs
  34. -    Used to populate a Domain Name Set in ISA 2006.  This will delete the domain name set information, if any data
  35.     is contained in the existing set, then recreate the domain name set with the given list.
  36. -    Each domain will be added twice: once with a prepended "*." and another without the leading "*." wildcard, since 
  37.     ISA won't match on just the plain domain name in a URL if the domain has "*." prepended to it in the set.
  38. -    Depending on the speed of the ISA box, importing a 10MB file with 500,000 domains can take between two and four 
  39.     hours.  This is a bottleneck imposed  by ISA, not the Windows Script Host or VBScript.  Hence, schedule your
  40.     imports during off-peak hours and run the script with the Start command to launch it with a lower multi-tasking 
  41.     priority; for example, like this:
  42.         
  43.             
  44. -    Usage:
  45.         *Scripted nightly import, running at a lower multi-tasking priority (Inside Task Scheduler)
  46.             "start /belownormal cscript.exe ISA_Fill_Domain_Name_Set.vbs "Block List" domains"
  47.                 *"Block List" = Domain Name Set in ISA 2006
  48.                 *domains = text file containing domain list to block
  49.         *One-time import
  50.             cscript.exe ISA_Fill_Domain_Name_Set.vbs "Block List" domains
  51.                 *"Block List" = Domain Name Set in ISA 2006
  52.                 *domains = text file containing domain list to block
  53.  
  54. ISA_Fill_URL_Set.vbs
  55. -    Used to populate a URL Set in ISA 2006.  This will delete the URL set information, if any data
  56.     is contained in the existing set, then recreate the URL set with the given list.
  57. -    Usage:
  58.         *Scripted nightly import, running at a lower multi-tasking priority (Inside Task Scheduler)
  59.             "start /belownormal cscript.exe ISA_Fill_URL_Set.vbs "Block List" URLs"
  60.                 *"Block List" = Domain Name Set in ISA 2006
  61.                 *URLs = text file containing domain list to block
  62.         *One-time import
  63.             cscript.exe ISA_Fill_URL_Set.vbs "Block List" URLs
  64.                 *"Block List" = Domain Name Set in ISA 2006
  65.                 *URLs = text file containing domain list to block
  66.  
  67. ISA_MSDE_Max_Memory.vbs
  68. -    Used to view, increase, or decrease the amount of memory being used by the local MSDE database.  The absolute
  69.     minimal amount of memory for the MSDE database should be no less than 128mb of RAM.  With most implementations,
  70.     512mb of memory allocated to the MSDE database is sufficient.
  71. -    Usage:
  72.         *View amount of memory currently allocated to MSDE
  73.             cscript.exe ISA_MSDE_Max_Memory.vbs
  74.         *Set amount of memory to allocate to MSDE
  75.             cscript.exe ISA_MSDE_Max_Memory.vbs 512
  76.                 *512 - Amount of memory
  77.